From 9ead829c58b5d4b745320dd8a89882ff39293594 Mon Sep 17 00:00:00 2001 From: "iap10@firebug.cl.cam.ac.uk" Date: Thu, 8 Sep 2005 20:39:58 +0000 Subject: [PATCH] Bug fix on x86_64 increase_reservation Signed-off-by: ian@xensource.com --- tools/python/xen/lowlevel/xc/xc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/lowlevel/xc/xc.c b/tools/python/xen/lowlevel/xc/xc.c index d2c132ed8b..531b7a7b1c 100644 --- a/tools/python/xen/lowlevel/xc/xc.c +++ b/tools/python/xen/lowlevel/xc/xc.c @@ -846,7 +846,7 @@ static PyObject *pyxc_domain_memory_increase_reservation(PyObject *self, static char *kwd_list[] = { "dom", "mem_kb", "extent_order", "address_bits", NULL }; - if ( !PyArg_ParseTupleAndKeywords(args, kwds, "ii|ii", kwd_list, + if ( !PyArg_ParseTupleAndKeywords(args, kwds, "il|ii", kwd_list, &dom, &mem_kb, &extent_order, &address_bits) ) return NULL; -- 2.30.2